home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-12-05 | 491 b | 28 lines | [TEXT/MPS ] |
- /*
- File: mtb0.c
- Contains: Error Checking
- Written by: DTS and QT Engineering
- Copyright: © 1992-1994 by Apple Computer, Inc., all rights reserved.
- Change History (most recent first):
- <1> 12/4/94 khs changed the format of the file to the new look and feel
- To Do:
- */
-
-
- // INCLUDES
- #include "mtb.h"
-
-
- // FUNCTIONS
- void CheckError(OSErr error,
- Str255 displayString)
- {
- if (error == noErr)
- return;
- if (displayString[0] > 0)
- DebugStr(displayString);
- ExitToShell();
- }
-
-
-